home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / gkismet / Misc.pm < prev    next >
Text File  |  2005-10-20  |  1KB  |  61 lines

  1. #!/usr/bin/perl -w
  2. #
  3. # $Id: Misc.pm,v 1.15 2005/05/31 22:06:53 solovam Exp $
  4. #
  5. # This file is a part of gkismet
  6. #
  7. # This program is free software; you can redistribute it and/or
  8. # modify it under the terms of the GNU General Public License
  9. # as published by the Free Software Foundation; either version 2
  10. # of the License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20. #
  21.  
  22. #
  23. # Misc definitions
  24. #
  25. package Misc;
  26.  
  27. use strict;
  28. use Exporter;
  29. our(@ISA, @EXPORT, $true, $false, $version, $mileFactor, $footFactor);
  30. @ISA = qw(Exporter);
  31. @EXPORT = qw($true $false $version $mileFactor $footFactor);
  32.  
  33. $false = 0;
  34. $true = 1;
  35. $version = '0.0.10';
  36. # There some other mile definition that has .344. What a mess!
  37. $mileFactor = 1609.347;
  38. # This one is an exact value
  39. $footFactor = 0.3048;
  40.  
  41. #
  42. # Pow function
  43. #
  44. sub pow
  45. {
  46.     my $type = shift;
  47.     my($val, $power)  = (@_);
  48.     return exp(log($val) * $power);
  49. }
  50.  
  51. #
  52. # Just log base 10
  53. #
  54. sub log10 {
  55.     my $type = shift;
  56.     my $n = shift;
  57.     return log($n)/log(10);
  58. }
  59.  
  60. 1;
  61.